Fix xmexamples to reflect new meaning of cpus= config option.
authorKeir Fraser <keir.fraser@citrix.com>
Mon, 12 May 2008 09:13:15 +0000 (10:13 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Mon, 12 May 2008 09:13:15 +0000 (10:13 +0100)
Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com>
tools/examples/xmexample.hvm
tools/examples/xmexample.vti
tools/examples/xmexample1
tools/examples/xmexample2
tools/examples/xmexample3

index 689a1bc216472e1a95913bd5e5d3a75c93bb3440..0052c9a0534eb7a0624390728f7cc81db41363e2 100644 (file)
@@ -56,7 +56,8 @@ name = "ExampleHVMDomain"
 # List of which CPUS this domain is allowed to use, default Xen picks
 #cpus = ""         # leave to Xen to pick
 #cpus = "0"        # all vcpus run on CPU0
-#cpus = "0-3,5,^1" # run on cpus 0,2,3,5
+#cpus = "0-3,5,^1" # all vcpus run on cpus 0,2,3,5
+#cpus = ["2", "3"] # VCPU0 runs on CPU2, VCPU1 runs on CPU3
 
 # Optionally define mac and/or bridge for the network interfaces.
 # Random MACs are assigned if not given.
index 92e29c76c93e1119e4b047431c4c3e93155710ae..1aed0db090806ebebafaf2eca290d6efa80ce454 100644 (file)
@@ -33,7 +33,8 @@ name = "ExampleVTIDomain"
 # List of which CPUS this domain is allowed to use, default Xen picks
 #cpus = ""         # leave to Xen to pick
 #cpus = "0"        # all vcpus run on CPU0
-#cpus = "0-3,5,^1" # run on cpus 0,2,3,5
+#cpus = "0-3,5,^1" # all vcpus run on cpus 0,2,3,5
+#cpus = ["2", "3"] # VCPU0 runs on CPU2, VCPU1 runs on CPU3
 
 # Log2 of VHPT size, default=23 (8MB), minimum=15 (32KB).
 # In Windows OS, smaller size shows better performance.
index 357ad78bb59bbbdd65bdc2d67665dc4ca90ae092..1a5c4d999ea8d0bf3cf74bb7ae3622549a1a9a3c 100644 (file)
@@ -33,7 +33,8 @@ name = "ExampleDomain"
 # List of which CPUS this domain is allowed to use, default Xen picks
 #cpus = ""         # leave to Xen to pick
 #cpus = "0"        # all vcpus run on CPU0
-#cpus = "0-3,5,^1" # run on cpus 0,2,3,5
+#cpus = "0-3,5,^1" # all vcpus run on cpus 0,2,3,5
+#cpus = ["2", "3"] # VCPU0 runs on CPU2, VCPU1 runs on CPU3
 
 # Number of Virtual CPUS to use, default is 1
 #vcpus = 1
index 5f9329d3afdc8ce7fa852ec0d9979f3e25cb5ff6..12b9b0f6cae40bd5548704260f909a70338dba3a 100644 (file)
@@ -62,7 +62,8 @@ name = "VM%d" % vmid
 # List of which CPUS this domain is allowed to use, default Xen picks
 #cpus = ""         # leave to Xen to pick
 #cpus = "0"        # all vcpus run on CPU0
-#cpus = "0-3,5,^1" # run on cpus 0,2,3,5
+#cpus = "0-3,5,^1" # all vcpus run on cpus 0,2,3,5
+#cpus = ["2", "3"] # VCPU0 runs on CPU2, VCPU1 runs on CPU3
 #cpus = "%s" % vmid # set based on vmid (mod number of CPUs)
 
 # Number of Virtual CPUS to use, default is 1
index 09eb3744d20982d3a4ccde7b6a1170d30fdf230f..8610fcc483d3b2080671834f8f0bf5b4a31b7400 100644 (file)
@@ -62,7 +62,8 @@ name = "VM%d" % vmid
 # List of which CPUS this domain is allowed to use, default Xen picks
 #cpus = ""         # leave to Xen to pick
 #cpus = "0"        # all vcpus run on CPU0
-#cpus = "0-3,5,^1" # run on cpus 0,2,3,5
+#cpus = "0-3,5,^1" # all vcpus run on cpus 0,2,3,5
+#cpus = ["2", "3"] # VCPU0 runs on CPU2, VCPU1 runs on CPU3
 cpus = "%s" % vmid # set based on vmid (mod number of CPUs)
 
 #----------------------------------------------------------------------------